home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_4 / mkwrit57.lha / REXX / MKOUTCHE.REX next >
OS/2 REXX Batch file  |  1994-05-22  |  544b  |  28 lines

  1. /* 
  2. Checks outbound if all is OK
  3.  
  4. Othervise sends you a netmail
  5.  
  6. Uses MailWatch
  7.  
  8. */
  9.  
  10. /******************************/
  11. /* Change this for your needs */
  12.  
  13. myadress='2:203/143.1'
  14. MyName='Mats Kling'
  15. outbound='MAIL:OUTBOUND'
  16.  
  17. /******************************/
  18.  
  19.  
  20. options results
  21.  
  22.  
  23. address command 'mailwatch 'outbound' >t:mailcheck'
  24. if rc ~=0 then do
  25.     address command 'rx >NIL: mkwrite -fMailwatch -fa'myadress' -t'myname' -ta'myadress' -aMAIL -sSome eroors in outbound found -oMailwatch -tet:mailcheck'
  26. end
  27. address command 'delete >NIL: t:mailcheck'
  28.